Telegram Group & Telegram Channel
Converts a hexadecimal color code to a tuple of integers corresponding to its RGB components.

Use a list comprehension in combination with int() and list slice notation to get the RGB components from the hexadecimal string.

Use tuple() to convert the resulting list to a tuple.

Code
:

def hex_to_rgb(hex):
return tuple(int(hex[i:i+2], 16) for i in (0, 2, 4))

EXAMPLE

hex_to_rgb('FFA501')

Output:
(255, 165, 1)

Share and Support
@Python_Codes



tg-me.com/python_codes/149
Create:
Last Update:

Converts a hexadecimal color code to a tuple of integers corresponding to its RGB components.

Use a list comprehension in combination with int() and list slice notation to get the RGB components from the hexadecimal string.

Use tuple() to convert the resulting list to a tuple.

Code
:

def hex_to_rgb(hex):
return tuple(int(hex[i:i+2], 16) for i in (0, 2, 4))

EXAMPLE

hex_to_rgb('FFA501')

Output:
(255, 165, 1)

Share and Support
@Python_Codes

BY Python Codes


Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283

Share with your friend now:
tg-me.com/python_codes/149

View MORE
Open in Telegram


Python Codes Telegram | DID YOU KNOW?

Date: |

The Singapore stock market has alternated between positive and negative finishes through the last five trading days since the end of the two-day winning streak in which it had added more than a dozen points or 0.4 percent. The Straits Times Index now sits just above the 3,060-point plateau and it's likely to see a narrow trading range on Monday.

Python Codes from br


Telegram Python Codes
FROM USA